home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / bit / help / BIT_convolve < prev    next >
Text File  |  1994-08-01  |  565b  |  23 lines

  1.  
  2. Sample external bindings for convolution:
  3.  
  4. All lines that do not start with @ on the first column will be 
  5. silently ignored.  The formats are:
  6.  
  7.   @label; rank; e1,e2,e3,...... ;
  8.  
  9. where 
  10.     label:  the string to be used to label the button.
  11.     rank :  the order of the matrix. Currently only square matrix
  12.             is supported.
  13.     e1.. :  the matrix element.
  14.  
  15. The convolution kernal needs not to be normalized for bit will
  16. do the normalization
  17.  
  18.  
  19. @Smooth;  3; 2,2,2,2,2,2,2,2,2 ;
  20. @Smooth0; 3; 2, 2,2,2,0,2,2,2,2;
  21. @Sharpen; 3; 0, -1, 0, -1, 10, -1, 0, -1, 0;
  22.  
  23.